home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / ConfiguredUniverse / j3d1x1-stereo.z / j3d1x1-stereo
Encoding:
Text File  |  2003-08-08  |  4.2 KB  |  109 lines

  1. /*
  2.  *    @(#)j3d1x1-stereo 1.2 01/10/29 15:40:14
  3.  *
  4.  * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. /*
  41.  ************************************************************************
  42.  *  
  43.  * Java 3D configuration file for single fullscreen stereo desktop
  44.  * configuration with no head tracking.
  45.  *  
  46.  ************************************************************************
  47.  */
  48.  
  49. // Create a new screen object and associate it with a logical name and a
  50. // number.  This number is used as an index to retrieve the AWT GraphicsDevice
  51. // from the array that GraphicsEnvironment.getScreenDevices() returns.
  52. // 
  53. // NOTE: The GraphicsDevice order in the array is specific to the local
  54. // site and display system.
  55. // 
  56. (NewScreen center 0)
  57.  
  58. // Create a fullscreen window
  59. //
  60. (ScreenAttribute center WindowSize NoBorderFullScreen)
  61.  
  62. // Set the available image area for the full screen.
  63. // 
  64. (ScreenAttribute center    PhysicalScreenWidth  0.360)
  65. (ScreenAttribute center    PhysicalScreenHeight 0.288)
  66.  
  67. // Set the TrackerBaseToImagePlate transform for this screen.  The coexistence
  68. // to tracker base transform is identity by default, so the tracker base origin
  69. // and orientation will also set the origin and orientation of coexistence
  70. // coordinates in the physical world.  This is the primary purpose of setting
  71. // this transform when neither head tracking nor multiple screens are being
  72. // used. 
  73. //
  74. // The tracker base and center of coexistence are set here to the middle of the
  75. // screen's image plate.  Their basis vectors are aligned with the image plate
  76. // basis vectors.  The physical eyepoint position will be set relative to
  77. // coexistence coordinates below.
  78. //
  79. (ScreenAttribute center TrackerBaseToImagePlate
  80.                         (Translate 0.180 0.144 0.000))
  81.  
  82. // Define the physical body.
  83. //
  84. // The head origin is halfway between the eyes, with X extending to the right,
  85. // Y up, and positive Z extending into the skull.
  86. // 
  87. (NewPhysicalBody SiteUser)
  88.  
  89. // Set the interpupilary distance.  This sets the LeftEyePosition and
  90. // RightEyePosition to offsets of half this distance along both directions of
  91. // the X axis.
  92. // 
  93. (PhysicalBodyAttribute SiteUser StereoEyeSeparation 0.066)
  94.  
  95. // Create a view using the defined screen and physical body.
  96. //
  97. (NewView view0)
  98. (ViewAttribute view0 Screen       center)
  99. (ViewAttribute view0 PhysicalBody SiteUser)
  100.  
  101. // Set the eyepoint relative to coexistence coordinates.  Here it is set 45cm
  102. // toward the user along +Z.
  103. // 
  104. (ViewAttribute view0 CenterEyeInCoexistence (0.0 0.0 0.45))
  105.  
  106. // Enable stereo viewing.
  107. // 
  108. (ViewAttribute view0 StereoEnable true)
  109.